home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
mdboutln.000
/
demo.dpr
< prev
next >
Wrap
Text File
|
1996-04-08
|
815b
|
28 lines
program Demo;
uses
Forms,
Maelstrm,
Main in 'MAIN.PAS' {frmMainForm},
About in 'ABOUT.PAS' {frmAboutBox},
Aeemp in 'AEEMP.PAS' {frmAEEmployee}; {AboutBox}
{$R *.RES}
var
SplashScreen : TSplashScreen; {in the Splash unit}
begin
Application.Title := 'Maelstrom TDBOutline Demo';
Application.CreateForm(TfrmMainForm, frmMainForm);
Application.CreateForm(TfrmAboutBox, frmAboutBox);
Application.CreateForm(TfrmAEEmployee, frmAEEmployee);
SplashScreen := TSplashScreen.Create(Application);
try
SplashScreen.Show;
SplashScreen.Update; {Process any pending Windows paint messages}
finally {Make sure the splash screen gets released}
{ SplashScreen.Free;}
end;
Application.CreateForm(TSplashScreen, SplashScreen);
Application.Run;
end.